TileStoreUsageMode

enum TileStoreUsageMode

Describes tile store usage modes.

Entries

READ_AND_UPDATE
Link copied to clipboard
Tile store enabled for accessing local tile packs and for loading new tile packs from server.All tile requests are converted to tile pack requests, i.e.the tile pack that includes the request tile will be loaded, and the tile extractedfrom it.
READ_ONLY
Link copied to clipboard
Tile store enabled for accessing loaded tile packs.The implementation first checks tile store when requesting a tile.If a tile pack is already loaded, the tile will be extracted and returned.
DISABLED
Link copied to clipboard
Tile store usage is disabled.The implementation skips checking tile store when requesting a tile.

Functions

toString
Link copied to clipboard
open fun toString(): String
valueOf
Link copied to clipboard
open fun valueOf(name: String): TileStoreUsageMode
values
Link copied to clipboard
open fun values(): Array<TileStoreUsageMode>